ראיון שארך כשעתיים. ראיון עם המנהל + סימולציה המדמה תהליך עבודה מול מספר גורמים (מחלקות שונות). מתוארת תקלה ונבדק כיצד אתה מגיב ופועל בסיטואציה, צעדים ומייל מסכם של אותה שיחה מול הגורמים השונים.
שאלות מתוך הראיון
באיזה שיטות עבודה פעלת. כמה אנשים נהלת. האם העבודה הייתה גלובלית. ספר על מוצרים שהובלת את הלייף סייקל שלהם. אילו תקלות היו בדרך וכיצד התמודדת. באילו כלים/מערכות עבדת.
ראיון מקצועי ראשון בחברה שכלל שני ראשי צוותים שכל אחד מהם הקדיש כשעה.
שאלות מתוך הראיון
1. string permutations -
Describe the algorithm of a method that check if 2 given strings are a permutation of each other
Time complexity?
space complexity?
2. What is Immutable in java?
What is the motivation to implement an immutable class?
implement an immutable class that has 2 fields:
String name
Date dateOfBirth
3. implement an interface that include 4 methods:
void init(int size) – init the data structure. After the init you cant reinstanciate your data structure.
T get(int index)
void set(int index, T t)
void setAll(T t) – set at once the same value to all the elements
The trick in that question is that get, set and setAll must be implemented in o(1)